Authentication Schemes

Authentication Schemes

This API has two types of Authentication Scheme.

V1 Controllers has only Applyze Authentication scheme. Jwt doesn't work for V1 Controllers.

V2 Controller Supported Schemes:

  • Jwt Bearer
  • Applyze (Api-Key, User-Api-Key, App-Key)

Jwt Bearer

Bearer token is given by Tenant after a successfully login. Bearer token must be sent in Header as Authorization parameter.

curl -H 'Accept: application/json' -H "Authorization: Bearer {YOUR_TOKEN HERE}" https://mobiroller.api.applyze.com/tenant/v2/apps

Applyze

This authentication scheme does not supported by all endpoints. This is supported endpoint which only client uses like reading contents. This scheme does not have any authorization, so this authentication can make only read processes.

curl -H 'Accept: application/json' -H "Api-Key: {YOUR_APIKEY_HERE} -H "User-Api-Key: {YOUR_USERAPIKEY_HERE} -H "App-Key: {YOUR_APPKEY_HERE}" https://mobiroller.api.applyze.com/tenant/v2/apps
Header Parameter From Description
Api-Key Header Determines Tenant. Each request must have Api-Key

ApplyzeApp

This scheme is used by clients and is a combination of Api-Key & App-Key in header. This determines whic app is sending request and the request can access only own app's data.

Header Parameter From Description
Api-Key header Determines Tenant. Each request must have Api-Key
App-Key header Determines App in Tenant.